type crypto/tls.recordType

13 uses

	crypto/tls (current package)
		common.go#L50: type recordType uint8
		common.go#L53: 	recordTypeChangeCipherSpec recordType = 20
		common.go#L54: 	recordTypeAlert            recordType = 21
		common.go#L55: 	recordTypeHandshake        recordType = 22
		common.go#L56: 	recordTypeApplicationData  recordType = 23
		conn.go#L332: func (hc *halfConn) decrypt(record []byte) ([]byte, recordType, error) {
		conn.go#L334: 	typ := recordType(record[0])
		conn.go#L411: 					typ = recordType(plaintext[i])
		conn.go#L626: 	typ := recordType(hdr[0])
		conn.go#L866: func (c *Conn) maxPayloadSizeForWrite(typ recordType) int {
		conn.go#L945: func (c *Conn) writeRecordLocked(typ recordType, data []byte) (int, error) {
		conn.go#L1005: func (c *Conn) writeRecord(typ recordType, data []byte) (int, error) {
		conn.go#L1304: 		recordType(c.rawInput.Bytes()[0]) == recordTypeAlert {